home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgramD2.iso / Borland / Borland C++ V5.02 / MIXTREE.PAK / MISC.C < prev    next >
C/C++ Source or Header  |  1997-05-06  |  3KB  |  98 lines

  1. // THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF
  2. // ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO
  3. // THE IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A
  4. // PARTICULAR PURPOSE.
  5. //
  6. // Copyright (C) 1993-1995  Microsoft Corporation.  All Rights Reserved.
  7. //
  8. //  MODULE:   misc.c
  9. //
  10. //  PURPOSE:  Contains all helper functions "global" to the application.
  11. //
  12. //  FUNCTIONS:
  13. //    CenterWindow - Center one window over another.
  14. //
  15. //  COMMENTS:
  16. //
  17. //
  18.  
  19. #include <windows.h>            // required for all Windows applications
  20. #include <windowsx.h>
  21. #include "globals.h"            // prototypes specific to this application
  22.  
  23.  
  24.  
  25. //
  26. //  FUNCTION: CenterWindow(HWND, HWND)
  27. //
  28. //  PURPOSE:  Center one window over another.
  29. //
  30. //  PARAMETERS:
  31. //    hwndChild - The handle of the window to be centered.
  32. //    hwndParent- The handle of the window to center on.
  33. //
  34. //  RETURN VALUE:
  35. //
  36. //    TRUE  - Success
  37. //    FALSE - Failure
  38. //
  39. //  COMMENTS:
  40. //
  41. //    Dialog boxes take on the screen position that they were designed
  42. //    at, which is not always appropriate. Centering the dialog over a
  43. //    particular window usually results in a better position.
  44. //
  45.  
  46. BOOL CenterWindow(HWND hwndChild, HWND hwndParent)
  47. {
  48.     RECT    rcChild, rcParent;
  49.     int     cxChild, cyChild, cxParent, cyParent;
  50.     int     cxScreen, cyScreen, xNew, yNew;
  51.     HDC     hdc;
  52.  
  53.     // Get the Height and Width of the child window
  54.     GetWindowRect(hwndChild, &rcChild);
  55.     cxChild = rcChild.right - rcChild.left;
  56.     cyChild = rcChild.bottom - rcChild.top;
  57.  
  58.     // Get the Height and Width of the parent window
  59.     GetWindowRect(hwndParent, &rcParent);
  60.     cxParent = rcParent.right - rcParent.left;
  61.     cyParent = rcParent.bottom - rcParent.top;
  62.  
  63.     // Get the display limits
  64.     hdc = GetDC(hwndChild);
  65.     cxScreen = GetDeviceCaps(hdc, HORZRES);
  66.     cyScreen = GetDeviceCaps(hdc, VERTRES);
  67.     ReleaseDC(hwndChild, hdc);
  68.  
  69.     // Calculate new X position, then adjust for screen
  70.     xNew = rcParent.left + ((cxParent - cxChild) / 2);
  71.     if (xNew < 0)
  72.     {
  73.         xNew = 0;
  74.     }
  75.     else if ((xNew + cxChild) > cxScreen)
  76.     {
  77.         xNew = cxScreen - cxChild;
  78.     }
  79.  
  80.     // Calculate new Y position, then adjust for screen
  81.     yNew = rcParent.top  + ((cyParent - cyChild) / 2);
  82.     if (yNew < 0)
  83.     {
  84.         yNew = 0;
  85.     }
  86.     else if ((yNew + cyChild) > cyScreen)
  87.     {
  88.         yNew = cyScreen - cyChild;
  89.     }
  90.  
  91.     // Set it, and return
  92.     return SetWindowPos(hwndChild,
  93.                         NULL,
  94.                         xNew, yNew,
  95.                         0, 0,
  96.                         SWP_NOSIZE | SWP_NOZORDER);
  97. }
  98.